Description
Defines an extent rectangle.
Diagram
Overview
|
|
maxx required xs:double
Right top x-coordinate in map units.
|
|
maxy required xs:double
Right top y-coordinate in map units.
|
|
minx required xs:double
Left bottom x-coordinate in map units.
|
|
miny required xs:double
Left bottom y-coordinate in map units.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
maxx | xs:double | required | | | Right top x-coordinate in map units. |
maxy | xs:double | required | | | Right top y-coordinate in map units. |
minx | xs:double | required | | | Left bottom x-coordinate in map units. |
miny | xs:double | required | | | Left bottom y-coordinate in map units. |
Examples
Source
<xs:element name="ENVELOPE" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Defines an extent rectangle.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute use="required" name="maxx" type="xs:double">
<xs:annotation>
<xs:documentation>Right top x-coordinate in map units.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute use="required" name="maxy" type="xs:double">
<xs:annotation>
<xs:documentation>Right top y-coordinate in map units.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute use="required" name="minx" type="xs:double">
<xs:annotation>
<xs:documentation>Left bottom x-coordinate in map units.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute use="required" name="miny" type="xs:double">
<xs:annotation>
<xs:documentation>Left bottom y-coordinate in map units. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also